AE 315 · Experimental Aerodynamics · Spring 2025 · ERAU
Shock waves are one of the most dramatic phenomena in compressible flow — a razor-thin region where pressure, temperature, and density jump discontinuously. They appear inside nozzles, around supersonic bodies, and at control surface impingement points. Schlieren imaging makes them visible without touching the flow, an elegant optical technique used in supersonic aircraft testing, ballistic research, and scramjet development. This lab introduced blowdown supersonic wind tunnel operation and applied Schlieren photography to characterize a normal shock inside the nozzle.
The ERAU blowdown tunnel stores compressed air, releases it through a pressure regulator into a convergent-divergent nozzle, and exhausts through a silencer. Thirteen static taps sampled the floor pressure distribution during steady-state operation (identified from the time history as rows 1,653–2,103). Total pressure was back-calculated at the throat assuming Mach 1 flow, and the nozzle pressure ratio was compared against the critical value to confirm shock presence:
NPR = P0 / Pexit Shock strength S = Pafter / Pbefore
Mass flow rate was computed from isentropic choked-flow theory. Schlieren images were captured simultaneously to visually confirm shock position and morphology.
Raw pressure data was time-averaged over the steady-state window, augmented with atmospheric pressure, and used to back-calculate total pressure and compute NPR, shock strength, and mass flow rate.
% Steady-state average + atmospheric correction
range_ss = tempData(1653:2103, :);
dataframe = mean(range_ss) + Patm; % 13 taps (psi)
% Back-calculate total pressure from throat (M = 1)
P0 = dataframe(2) / (1 + (y-1)/2)^(-y/(y-1));
% NPR and shock strength
NPR = P0 / mean(dataframe(11)); % = 3.932
shock = dataframe(10) / dataframe(9); % = 1.614 (S = P_after/P_before)
% Choked-flow mass rate (lbm/s)
a = sqrt(y * R * T);
mdot = Ath * (P0/a) * sqrt(y) * ((2/(y+1))^((y+1)/(2*(y-1)))) * 32.174;